home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / ACORNUSERS / EMULATOR / V2600 / !v2600 / h / types < prev    next >
Text File  |  1997-03-25  |  895b  |  38 lines

  1. /*****************************************************************************
  2.  
  3.    This file is part of x2600, the Atari 2600 Emulator
  4.    ===================================================
  5.    
  6.    Copyright 1996 Alex Hornby. For contributions see the file CREDITS.
  7.  
  8.    This software is distributed under the terms of the GNU General Public
  9.    License. This is free software with ABSOLUTELY NO WARRANTY.
  10.    
  11.    See the file COPYING for details.
  12.    
  13.    $Id: types.h,v 1.4 1996/09/04 22:37:48 ahornby Exp $
  14. ******************************************************************************/
  15.  
  16.  
  17. /*
  18.  * This file declares useful types.
  19.  */
  20.  
  21.  
  22. #ifndef V2600_TYPES_H
  23. #define V2600_TYPES_H
  24.  
  25.  
  26. typedef signed char    SIGNED_CHAR;
  27.  
  28. typedef unsigned int     UINT32;
  29. typedef unsigned short     UINT16;
  30.  
  31. typedef unsigned char     BYTE;
  32. typedef unsigned short     ADDRESS;
  33. typedef unsigned long    CLOCK;
  34.  
  35. typedef int        ADDR_T;
  36.  
  37. #endif
  38.